home *** CD-ROM | disk | FTP | other *** search
/ ASME's Mechanical Engine…ing Toolkit 1997 December / ASME's Mechanical Engineering Toolkit 1997 December.iso / c_lang / varinc.lzh / PNT_ID_C.C < prev    next >
Text File  |  1979-11-30  |  1KB  |  36 lines

  1. /* SOURCE FILE: PNT_ID_C.C */
  2. /*****************************************************************************/
  3. /* pnt_id_cust() paints screen for order entry: identify customer. This      */
  4. /*   function is called exclusively by id_cust() in ordbuild.c.              */
  5. /*****************************************************************************/
  6.  
  7. #include <stddefs.h>
  8. #include "projutil.h"
  9.  
  10. void pnt_id_cust()
  11.    {
  12.    tput(4, 10, "Customer Name");
  13.    tput(6, 10, "Company Name");
  14.    tput(7, 10, "Phone Number");
  15.  
  16.    tput(9, 10, "Ship to Name");
  17.    tput(10, 18, "Company");
  18.    tput(11, 18, "Street");
  19.    tput(12, 18, "2nd Street");
  20.    tput(13, 18, "City");
  21.    tput(13, 49, "State");
  22.    tput(13, 60, "Zip");
  23.  
  24.    tput(15, 10, "Bill to Name");
  25.    tput(16, 18, "Company");
  26.    tput(17, 18, "Street");
  27.    tput(18, 18, "2nd Street");
  28.    tput(19, 18, "City");
  29.    tput(19, 49, "State");
  30.    tput(19, 60, "Zip");
  31.  
  32.    tput(21, 10, "Resale?");
  33.    tput(21, 30, "Resale Permit Number");
  34.    tput(23, 10, "Advertising Ref");
  35.    } 
  36.